Asset Scan Templates

An asset scan template defines what will be performed during an asset scan. It is used to scan for the software and/or the hardware components that are contained on the target machine.

Base URL

        https://<consoleFQDN:port>/st/console/api/v1.0/asset/scantemplates

Supported Requests

Method

URL

Input

Return

GET

https://<consoleFQDN:port>/st/console/api/v1.0/asset/scantemplates

URL Parameters

AssetScanTemplates[]

https://<consoleFQDN:port>/st/console/api/v1.0/asset/scantemplates/{id}

 

Configuration information for the specified asset scan template.

https://<consoleFQDN:port>/st/console/api/v1.0/asset/scantemplates/{id}/usedby

 

List of entities using the specified asset scan template.

Input Model

Example with Sample Response

Find all entities using an asset scan template with ID 01234567-89AB-CDEF-0123-456789ABCDEF

GET Request

https://<consoleFQDN:port>/st/console/api/v1.0/asset/scantemplates/01234567-89AB-CDEF-0123-456789ABCDEF/usedby

Sample Response

Copy
{
    "count": 1,
    "value": [
        {
            "name": "Sample Agent Policy",
            "usageType": "AgentPolicy"
        }
    ]
}

Other Request Examples

Output Models